home *** CD-ROM | disk | FTP | other *** search
/ NeXT Education Software Sampler 1992 Fall / NeXT Education Software Sampler 1992 Fall.iso / SoundAndMusic / cmix / lpc / stabilization / Makefile < prev    next >
Makefile  |  1991-12-17  |  193b  |  13 lines

  1. CFLAGS =  -O 
  2. LDFLAGS = libF77.a libI77.a
  3. CC = cc
  4. F = newroottest.o newroottestmain.o newstable.o factor.o
  5.  
  6. all:    stabilize
  7.  
  8. clean:
  9.     rm -f *.o
  10.  
  11. stabilize:  $(F)
  12.     cc -o stabilize $(F) $(LDFLAGS)
  13.